home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 December
/
Chip_2001-12_cd1.bin
/
zkuste
/
tuning
/
download
/
xteq
/
setup.exe
/
{app}
/
plugins
/
XQ Startmenu Options 4.xpl
< prev
next >
Wrap
Text File
|
2001-04-13
|
1KB
|
55 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="6"
"COUNT"="2"
"UIPATH"="Appearance\Taskbar"
"NAME"="General Taskbar Options"
"VERSION"="1.07"
"OSVERSION"="000011"
"LANGUAGE"="VBScript"
"TEXT 1"="Show context menu for taskbar"
"TEXT 2"="Allow resizing of taskbar"
"DESCRIPTION 1"="Some options for the taskbar."
"DESCRIPTION 2"="NOTE: At the the moment this items are only available for Windows ME and Windows XP."
"AUTHOR"="Xteq Systems (CptSiskoX)"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="Resistance is futile. "
sV1="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarContextMenu"
sV2="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarSizeMove"
SUB Plugin_Initialize
i=RegReadValue(sV1)
If IsEmpty(i) or i=1 then SetUIElement 1,true
i=RegReadValue(sV2)
if IsEmpty(i) or i=1 then SetUIElement 2,true
END SUB
SUB Plugin_CheckData(ElementIndex)
END SUB
SUB Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(sV1,1,2)
else
Call RegWriteValue(sV1,0,2)
end if
b=GetUIElement(2)
if b=true then
Call RegWriteValue(sV2,1,2)
else
Call RegWriteValue(sV2,0,2)
end if
Call Logoff
END SUB
SUB Plugin_Terminate
END SUB